home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / hewitt.swf / scripts / frame_62 / PlaceObject2_3540_554 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Text File  |  2011-06-09  |  2.0 KB  |  82 lines

  1. onClipEvent(enterFrame){
  2.    if(_root.timish == 0)
  3.    {
  4.       _root.timish = -1;
  5.       _root.dm = random(4) + 1;
  6.       _root["dm" + _root.dm].play();
  7.    }
  8.    else if(_root.timish > 0)
  9.    {
  10.       _root.timish--;
  11.    }
  12.    if(_root.prompt._currentframe > 3)
  13.    {
  14.       if(_root.score < -80 && _root.score > -100 && inc == 0)
  15.       {
  16.          _root.prompt.gotoAndStop(6);
  17.       }
  18.       if(_root.score < -55 && _root.score > -80 && inc == 0)
  19.       {
  20.          _root.prompt.gotoAndStop(7);
  21.       }
  22.       if(_root.score < -26 && _root.score > -55 && inc == 0)
  23.       {
  24.          _root.prompt.gotoAndStop(8);
  25.       }
  26.       if(_root.score < 0 && _root.score > -26 && inc == 1)
  27.       {
  28.          _root.prompt.gotoAndStop(9);
  29.       }
  30.       if(_root.score > 0 && _root.score < 26 && inc == 1)
  31.       {
  32.          _root.prompt.gotoAndStop(10);
  33.       }
  34.       if(_root.score > 26 && _root.score < 55 && inc == 1)
  35.       {
  36.          _root.prompt.gotoAndStop(11);
  37.       }
  38.       if(_root.score > 55 && _root.score < 80 && inc == 1)
  39.       {
  40.          _root.prompt.gotoAndStop(12);
  41.       }
  42.       if(_root.score > 80 && _root.score < 100 && inc == 1)
  43.       {
  44.          _root.prompt.gotoAndStop(13);
  45.       }
  46.    }
  47.    if(_root.score <= -100)
  48.    {
  49.       _root.score = -55;
  50.       stopAllSounds();
  51.       _root.dm1.gotoAndStop(1);
  52.       _root.dm2.gotoAndStop(1);
  53.       _root.dm3.gotoAndStop(1);
  54.       _root.dm4.gotoAndStop(1);
  55.       _root.prompt.gotoAndStop(2);
  56.    }
  57.    else if(_root.score >= 100)
  58.    {
  59.       _root.score = 99;
  60.       stopAllSounds();
  61.       _root.dm1.gotoAndStop(1);
  62.       _root.dm2.gotoAndStop(1);
  63.       _root.dm3.gotoAndStop(1);
  64.       _root.dm4.gotoAndStop(1);
  65.       _root.prompt.gotoAndStop(3);
  66.    }
  67.    if(this._rotation < _root.score * 0.9 - 1)
  68.    {
  69.       inc = 1;
  70.       this._rotation = this._rotation + 1;
  71.    }
  72.    else if(this._rotation > _root.score * 0.9 + 1)
  73.    {
  74.       inc = 0;
  75.       this._rotation--;
  76.    }
  77.    else
  78.    {
  79.       inc = 2;
  80.    }
  81. }
  82.